home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 592b.lha / TermII / Fran軋is / Exemples XCMD / XCMD.h < prev    next >
C/C++ Source or Header  |  1991-12-22  |  499b  |  31 lines

  1. /*
  2. *
  3. *       XCMD.h
  4. *
  5. *       Définition d'une XCMD
  6. *
  7. */
  8. #ifndef EXEC_TYPES_H
  9. #include <exec/types.h>
  10. #endif
  11. #ifndef EXEC_PORTS_H
  12. #include <exec/ports.h>
  13. #endif
  14. #ifndef DOS_DOS_H
  15. #include <dos/dos.h>
  16. #endif
  17.  
  18. struct XCMD
  19.   {
  20.   struct Message xcmd_Message;
  21.   long           xcmd_TermCmd;
  22.   struct Screen *xcmd_TermScreen;
  23.   BPTR           xcmd_TermDir;
  24.   char          *xcmd_Command;
  25.   void          *xcmd_Args[16];
  26.   BOOL           xcmd_TermError;
  27.   };
  28.  
  29. #define XCMD_START   1
  30. #define XCMD_STOP    2
  31.